home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
src
/
dir_data.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-11-10
|
479b
|
34 lines
#ifndef DIR_DATA_H
#define DIR_DATA_H
#include <sys/dir.h>
typedef struct
{
char *dirname;
BPTR cdir;
struct FileInfoBlock fib;
struct idirect *files, *pos;
int seeked;
} iDIR;
struct idirect
{
struct idirect *next;
/* Info needed for stat */
long handler;
long numblocks;
long size;
struct DateStamp date;
long type;
long protection;
struct direct entry;
};
extern iDIR *last_info;
extern struct idirect *last_entry;
BPTR _get_cd(void);
#endif